home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-24 | 992 b | 29 lines | [TEXT/KAHL] |
- /********************************************************/
- /* */
- /* Monster.h */
- /* A test Header for: Two_Way_List */
- /* Copyright 4/24/94 Hasan Edain */
- /* All Reights Reserved Worldwide */
- /* */
- /********************************************************/
-
- // Please feel free to modify and use this code for any purpose, as long as you
- // send me
- // a) source of the modified code.
- // b) licenced version of product the code is used in.
- // c) notes as to how the code could be made more usefull if you tried to use it, but
- // ended up not using it for any reason.
- // Hasan Edain
- // HasanEdain@AOL.com
- // box 667 Langley Wa 98260
- // fax: 206-579-6456
-
-
- typedef struct monster{
- char name[80];
- short st;
- short in;
- short dx;
- }monster;
-
- void printMonster(monster *theMonster);